home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
dev
/
cross
/
sasmv14.dms
/
sasmv14.adf
/
AREXX
/
edit.rexx
next >
Wrap
OS/2 REXX Batch file
|
1993-05-22
|
535b
|
23 lines
/*******************************/
/* ARexx CED Interface */
/* for the Super SASM */
/* */
/* Edit current project */
/*******************************/
ProjectFile = '.project'
Options Results
If Exists(ProjectFile) then do
Call Open(Work,ProjectFile)
Line1=ReadLN(Work)
Call Close(Work)
ADDRESS COMMAND 'ced '||Line1
End
Else do
say "ERROR EDIT: Uups, please create a project-file first."
say "~~~~~~~~~~~ It should only contain the name of your current sourcefile."
End